home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Terra Sound Library
/
Terra Sound Library.iso
/
player_composer
/
eagleplayer
/
ep_to_install
/
installdata
/
arexxexamples.lha
/
EP_Voice2-Toggle.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
197b
|
18 lines
/* EaglePlayer - toggles Voice2 */
address 'rexx_EP'
options results
status G vo2
if result == "no" then do
voice2 yes
say "Voice 2 now on"
end
else do
voice2 no
say "Voice 2 now off"
end